Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 317 Bytes

File metadata and controls

10 lines (6 loc) · 317 Bytes

DNS

Get-DnsClientServerAddress         # all DNS configs for all interfaces

# set new DNS for all active adapters
Get-NetAdapter | Where-Object Status -eq "Up" | Set-DnsClientServerAddress -ServerAddresses (<ip>)

Connection testing

Test-NetConnection -ComputerName "<hostname>" -Port <port>